home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00006_Script_Option Button Parent Script < prev    next >
Text File  |  1998-01-26  |  2KB  |  41 lines

  1. property normalMember
  2. property overMember
  3. property downMember
  4. property buttonLoc
  5. property buttonSprite
  6. property infoButtonOn
  7. property searchButtonOn
  8.  
  9. on new me,sentLoc,sentSprite,sentNormal,sentOver,sentDown
  10.   set the buttonLoc of me = sentLoc
  11.   set the buttonSprite of me = sentSprite
  12.   set the normalMember of me = sentNormal
  13.   set the overMember of me = sentOver
  14.   set the downMember of me = sentDown
  15.   set the infoButtonOn of me = FALSE
  16.   set the searchButtonOn of me = FALSE
  17.   puppetSprite the buttonSprite of me, true
  18.   set the member of sprite the buttonSprite of me to member the normalMember of me of castLib "Buttons"
  19.   set the width of sprite the buttonSprite of me to the width of member the normalMember of me of castLib "Buttons"
  20.   set the height of sprite the buttonSprite of me to the height of member the normalMember of me of castLib "Buttons"
  21.   set the loc of sprite the buttonSprite of me to the buttonLoc of me
  22.   return me
  23. end new
  24.  
  25. on overButton me
  26.   set the member of sprite the buttonSprite of me to member the overMember of me of castLib "Buttons"
  27.   set the width of sprite the buttonSprite of me to the width of member the overMember of me of castLib "Buttons"
  28.   set the height of sprite the buttonSprite of me to the height of member the overMember of me of castLib "Buttons"
  29. end
  30.  
  31. on normalButton me
  32.   set the member of sprite the buttonSprite of me to member the normalMember of me of castLib "Buttons"
  33.   set the width of sprite the buttonSprite of me to the width of member the normalMember of me of castLib "Buttons"
  34.   set the height of sprite the buttonSprite of me to the height of member the normalMember of me of castLib "Buttons"
  35. end
  36.  
  37. on downButton me
  38.   set the member of sprite the buttonSprite of me to member the downMember of me of castLib "Buttons"
  39.   set the width of sprite the buttonSprite of me to the width of member the downMember of me of castLib "Buttons"
  40.   set the height of sprite the buttonSprite of me to the height of member the downMember of me of castLib "Buttons"
  41. end